• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Bless

vegaseek

Member
Joined
Dec 11, 2010
Messages
146
Reaction score
8
No one's equipment is out of (or ask for a script, which means that everyone has the blessings). At TFS 0.4 (8.7 - Mystic Spirit)
 
first of all you shouldn't have TFS 0.4, coz you aren't premium

It's unevitable to keep the engine from being spread, so I don't see why they would make such a rule against it, it's only insanity if what you're saying even is true.

What's your sources, where did you get that information from?
 
The Forgotten Server 0.4 has not been officially released yet, you're using a development version at your own risk and therefor we provide no public support on this version. Thread closed.

@up
happy now?
 
The Forgotten Server 0.4 has not been officially released yet, you're using a development version at your own risk and therefor we provide no public support on this version. Thread closed.

@up
happy now?

I still don't see where it say its illegal to use for Free Accounts.

It's only downloadable for the premium users, since they are like "BETA" testers for TFS 0.4 but you're forgetting about 1 thing. This is going to be an official release for the free accounts aswell once it's out of beta stage.

If they get banished for using it now, would be really stupid? Since the point being is to release it for all users on OTland once it's out of beta stage.


@vegaseek:

Are you saying you want a script so that players always have all blessings when they login or do you want to remove bless for players who have died and loggs in?
 
Want to let that every player has an infinite blessing when you create a form (for ever). To no one's embarrassing to the inventory.
 
I still don't see where it say its illegal to use for Free Accounts.

It's only downloadable for the premium users, since they are like "BETA" testers for TFS 0.4 but you're forgetting about 1 thing. This is going to be an official release for the free accounts aswell once it's out of beta stage.

If they get banished for using it now, would be really stupid? Since the point being is to release it for all users on OTland once it's out of beta stage.


@vegaseek:

Are you saying you want a script so that players always have all blessings when they login or do you want to remove bless for players who have died and loggs in?

could you quote where i said that, if u had TFS 0.4 and u are not premium, you will get banned?
im just saying that we shouldnt provide public support on this version.
 
CreatureScript
XML
Code:
<event type="login" name="PlayerLogin" event="script" value="NAME-OF-YOUR-SCRIPT-HERE.lua"/>

CODE
Lua:
local blessing = [1, 2, 3, 4, 5]
function onLogin(cid)
	if getPlayerBlessing(cid, blessing) and getPlayerStorageValue(cid, 3398 then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You are fully blessed")
		setPlayerStorageValue(cid, 3399)
	elseif(not [getPlayerBlessing(cid, blessing)]) then
		doPlayerAddBlessing(cid, blessing)
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have been blessed by the five gods.")
	else
	return
	end
end


Creaturescript

XML
Code:
<event type="death" name="PlayerDeath" event="script" value="NAME-OF-YOUR-SCRIPT-HERE.lua"/>

CODE
Lua:
function onDeath(cid, corpse, deathList)
	if getPlayerStorageValue(cid, 3399) then
		setPlayerStorageValue(cid, 3398)
	end
end

There you go..
 
Last edited:
Back
Top