• 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!

Repp++ Help

den4is

New Member
Joined
Mar 5, 2009
Messages
270
Reaction score
0
Hello there,

Anyone knows how to get the script !buy "aol ?
And some people in my server gets RedSkull for killing 1, I have write this in config :

timeToDecreaseFrags = 2 * 60 * 1000
whiteSkullTime = 1.5 * 10 * 1000
killsToRedSkull = 120

And some people are just killing 1 and they are getting RS, And bugging , A guy go around 200 frags, Anyknow how to fix it?
And the time of whiteskull you see there how much i have changed it but they still losing it on 1second.
Please help and i will ofcourse att Rep++

Regards.
 
timeToDecreaseFrags = 1 * 60 * 60 * 1000
whiteSkullTime = 5 * 60 * 1000
killsToRedSkull = 4

Do like it is default, for me works perfectly.
 
credits do Nahruto

talk action.
PHP:
<talkaction words="!buy" script="buy.lua" />

PHP:
-----------------------By Nahruto--------------------------
-------------------http://otfans.net/----------------------
 function getPlayerMoney(cid)
gold = getPlayerItemCount(cid,2148)
plat = getPlayerItemCount(cid,2152)*100
crys = getPlayerItemCount(cid,2160)*10000
money = gold + plat + crys
return money
end
local items = {
    ["aol"] = {cash=30000, id=2173, amount=1},
    ["food"] = {cash=2000, id=2671, amount=100},
    ["backpack"] = {cash=100, id=1988, amount=1}
} 
---------End Config ---------
function onSay(cid, words, param)
bitem = items[param]
        if (bitem ~= nil) then
            if getPlayerMoney(cid) >= bitem.cash then
                doPlayerAddItem(cid,bitem.id,bitem.amount)
                doPlayerRemoveMoney(cid,bitem.cash)
            else
                doPlayerSendCancel(cid,"Sorry, you dont have enough money")
            end
        else
            doPlayerSendCancel(cid, "Invalid item.")            
        end
return 1
end
 
Rep++ added to Elaney for the buy aol code Thx,


Look,

They are losing their Whiteskull on 1sec, What even i write.. Its same
And some people got around 90k kills and some 40 and it changes , Bugged or something and they getting banned for 1 kill and getting Redskulls .. PLease help,
 
Rep++ added to Elaney for the buy aol code Thx,


Look,

They are losing their Whiteskull on 1sec, What even i write.. Its same
And some people got around 90k kills and some 40 and it changes , Bugged or something and they getting banned for 1 kill and getting Redskulls .. PLease help,

I had the same problem. Did the ot run while u changed it? or offline?
 
I had the same problem. Did the ot run while u changed it? or offline?

Well, I had the OT opened but it doesn't matter so much i think, I have tryed and tryed to change it and sometimes you just kill someone and get over 100frags.. And sometimes ban.
 
well if you have to ot online when changing there is a bug that changes the frags 10x. i did the same thing and everyone got rs after 1 frag/ban.
 
Back
Top