• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

The best VIP system ever! [Action/Movevent/Globalevent]

Bravo!
Magnifico.

Well, but (always a but...) is there any way to make spells that only the VIP players (of this system) can use?

Thank you. Greetings.
 
Hey,

This is a very nice VIP system good job Kekox!

One thing I suggest is that everytime the VIP effect comes up (that conffetti thing) It should also say "VIP!" in red letters going above the players head

Just a suggestion, but it would be nice so that other players will know they have VIP and not be like, "Why are you sparkling?" Lol

Thanks!
 
[14/07/2010 11:26:04] [Error - GlobalEvent Interface]
[14/07/2010 11:26:04] data/globalevents/scripts/vipEffect.lua:eek:nThink
[14/07/2010 11:26:04] Description:
[14/07/2010 11:26:04] attempt to index a function value
[14/07/2010 11:26:04] stack traceback:
[14/07/2010 11:26:04] [C]: in function 'doSendAnimatedText'
[14/07/2010 11:26:04] data/globalevents/scripts/vipEffect.lua:6: in function <data/globalevents/scripts/vipEffect.lua:1>
[14/07/2010 11:26:04] [Error - GlobalEvents::think] Couldn't execute event: vipEffect


Help please ^
:confused:
 
Bravo!
Magnifico.

Well, but (always a but...) is there any way to make spells that only the VIP players (of this system) can use?

Thank you. Greetings.

in the spell you will find this line
Lua:
function onCastSpell(cid, var)
---add this under it
if getCreatureStorage(cid, vipstorage) < 1 then
        doPlayerSendCancel(cid, 'Only Vip can use this Spell.')
        doSendMagicEffect(getThingPos(cid), 2) 
        return false
    end
--rest of script here
 
I got some errors when starting my server:

[07/08/2010 14:30:36] >> Loading script systems
[07/08/2010 14:30:37] [Error - LuaScriptInterface::loadFile] cannot open data/actions/scripts/vipmedal.lua: No such file or directory
[07/08/2010 14:30:37] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/vipmedal.lua)
[07/08/2010 14:30:37] cannot open data/actions/scripts/vipmedal.lua: No such file or directory
[07/08/2010 14:30:37] [Error - LuaScriptInterface::loadFile] cannot open data/actions/scripts/vipdoor.lua: No such file or directory
[07/08/2010 14:30:37] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/vipdoor.lua)
[07/08/2010 14:30:37] cannot open data/actions/scripts/vipdoor.lua: No such file or directory
[07/08/2010 14:30:37] [Error - LuaScriptInterface::loadFile] data/creaturescripts/scripts/firstitems.lua:4: unexpected symbol near 'local'
[07/08/2010 14:30:37] [Warning - Event::loadScript] Cannot load script (data/creaturescripts/scripts/firstitems.lua)
[07/08/2010 14:30:37] data/creaturescripts/scripts/firstitems.lua:4: unexpected symbol near 'local'


Can you help me?

Regards
 
Code:
No such file or directory

Do you know how to read?? there is no such file on data/actions/scripts/
 
Back
Top