What's new

[8.1] Najbardziej Poszukiwane Skrypty tylko tutaj !!<->!!

Status
Not open for further replies.

Kirelek

Advanced User
Joined
Apr 5, 2008
Messages
243
Reaction score
13
Xeder tylko se posty nabija
Jakby bylo ograniczenie 10 postow na dzien mialby niezle tych ostrzezen bo jeszcze wczoraj mial 50 a juz ile... 120?-.-

Nadodatek niedarady wzucic paru skryptow w 1poscie
Jakjest jakis dluzszy skrypt to nida rady wzucic 2 naraz
Moze skrypty niesa zbyt ciekawe bo siedze w nich dopiero pare dni
 

Op$

New User
Joined
Apr 16, 2008
Messages
1
Reaction score
0
Najbardziej Poszukiwane Skrypty tylko tutaj !!<->!! ( ?al chyba ka?dy umie to zrobi? ) 1/10
 

Kirelek

Advanced User
Joined
Apr 5, 2008
Messages
243
Reaction score
13
Bank talkactions (niemoj)Wchodzimy w data\talkactions\script\ robimy Bank.lua i wklejamy to:
Code:
 --Perfect Bank by Fifi

function onSay(cid,words,param)


local kredytmax = 5000000 --500cc
--\/ don't change/ nie zmienia? \/--
local lock = getPlayerStorageValue(cid,8005)
local kredyt = getPlayerStorageValue(cid,8004)
local logowanie = getPlayerStorageValue(cid,8003)
local konto = getPlayerStorageValue(cid,8002)
local playerpin = getPlayerStorageValue(cid,8001)
local playermoney = getPlayerStorageValue(cid,8000)
local access = 6
--/\ don't change/ nie zmienia? /\--


if words == '!nowekonto' then
if konto < 1 then
setPlayerStorageValue(cid,8002, 1)
local pin = math.random(100000000,999999999)
setPlayerStorageValue(cid,8001, pin)
setPlayerStorageValue(cid,8000, 0)
setPlayerStorageValue(cid,8005, 0)
doPlayerSendTextMessage(cid,22,"Twoj pin to "..pin..".")
else
doPlayerSendTextMessage(cid,22,"Posiadasz juz konto!")
end
end


if words == '!zaloguj' and param ~= "1000 1000 7" then
if konto == 1 then
if lock < 3 then
if logowanie < 1 then
if (param-playerpin) == 0 then
doPlayerSendTextMessage(cid,22,"Zostales zalogowany!")
setPlayerStorageValue(cid,8003, 1)
else
doPlayerSendTextMessage(cid,22,"Bledny kod PIN!")
setPlayerStorageValue(cid,8005, lock+1)
end
else
doPlayerSendTextMessage(cid,22,"Jestes juz zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Twoje konto jest zablokowane!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!wyloguj' then
if konto == 1 then
if logowanie == 1 then
doPlayerSendTextMessage(cid,22,"Zostales wylogowany!")
setPlayerStorageValue(cid,8003, 0)
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!wplac' and param ~= "" then
if konto == 1 then
if logowanie == 1 then
if doPlayerRemoveMoney(cid, param) == 1 then
setPlayerStorageValue(cid,8000, playermoney+param)
local newstatus = (playermoney + param)
doPlayerSendTextMessage(cid,22,"Wplaciles do banku "..param.." GP. Twoj aktualny stan konta wynosi "..newstatus.." GP.")
else
doPlayerSendTextMessage(cid,22,"Nie masz przy sobie tyle pieniedzy,aby tyle wplacic na konto.")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!wyplac' and param ~= "" then
if konto == 1 then
if logowanie == 1 then
if playermoney-param >= 0 then
setPlayerStorageValue(cid,8000, playermoney-param)
local newstatus = (playermoney-param)
doPlayerAddMoney(cid, param)
doPlayerSendTextMessage(cid,22,"Wyplaciles "..param..". Twoj stan konta wynosi "..newstatus.." GP.")
else
doPlayerSendTextMessage(cid,22,"Nie mozesz tyle wyplacic.")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!stankonta' then
if konto == 1 then
if logowanie == 1 then
doPlayerSendTextMessage(cid,22,"Na koncie masz "..playermoney.." GP.")
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!kredyt' and param ~= "" then
if isPremium(cid) and getPlayerLevel(cid) >= 250 then
if konto == 1 then
if logowanie == 1 then
if kredyt+param <= kredytmax then
setPlayerStorageValue(cid,8004, param)
doPlayerAddMoney(cid, param)
doPlayerSendTextMessage(cid,22,"Zaciagnales kredyt w wysokosci "..param.." gp!")
else
doPlayerSendTextMessage(cid,22,"Nie mozesz zaciagac juz kredytu!")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz premium lub nie masz 250 lvl!")
end
end


if words == '!splac' and param ~= "" then
if isPremium(cid) and getPlayerLevel(cid) >= 250 then
if konto == 1 then
if logowanie == 1 then
if doPlayerRemoveMoney(cid, param) == 1 then
setPlayerStorageValue(cid,8004, -param)
doPlayerSendTextMessage(cid,22,"Splaciles wlasnie "..param.." gp!")
else
doPlayerSendTextMessage(cid,22,"Nie masz tyle kasy!")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz premium lub nie masz 250 lvl!")
end
end


if words == '/lock' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
setPlayerStorageValue(getPlayerByName(param),8005, 3)
doPlayerSendTextMessage(cid,22,"Zablokowales konto graczowi "..param.."!")
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end


if words == '/unlock' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
setPlayerStorageValue(getPlayerByName(param),8005, 0)
doPlayerSendTextMessage(cid,22,"Odblokowales konto graczowi "..param.."!")
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end


if words == '/checkpin' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
local pin = getPlayerStorageValue(getPlayerByName(param),8001)
doPlayerSendTextMessage(getPlayerByName(param),22,"Twoj pin to "..pin.."!")
doPlayerSendTextMessage(cid,22,"Gracz zostal powiadomiony o swoim pinie!")
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end


if words == '/changepin' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
local pin = math.random(100000000,999999999)
doPlayerSendTextMessage(getPlayerByName(param),22,"Twoj nowy pin to "..pin.."!")
doPlayerSendTextMessage(cid,22,"Gracz zostal powiadomiony o swoim nowym pinie!")
setPlayerStorageValue(getPlayerByName(param),8001, pin)
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end

end
wchodzimy w data\talkactions.xml i dodajemy to:
Code:
 <talkaction words="!zaloguj" script="bank.lua"/>
<talkaction words="!wyloguj" script="bank.lua"/>
<talkaction words="!wplac" script="bank.lua"/>
<talkaction words="!wyplac" script="bank.lua"/>
<talkaction words="!nowekonto" script="bank.lua"/>
<talkaction words="!stankonta" script="bank.lua"/>
<talkaction words="!kredyt" script="bank.lua"/>
<talkaction words="!splac" script="bank.lua"/>
<talkaction words="/lock" script="bank.lua"/>
<talkaction words="/unlock" script="bank.lua"/>
<talkaction words="/changepin" script="bank.lua"/>
<talkaction words="/checkpin" script="bank.lua"/>
I mamy gotowy bank.
OBJASNIENIE

Nale?y zrobi? konto poleceniem !nowekonto
Zostanie wy?wietlony pin, kt?ry trzeba pami?ta? lub zapisac ;]!

Potem logowanie poleceniem !zaloguj "twoj pin

Po zalogowaniu dost?pne polecenia:

- !wplac "ilosc kasy w gp
- !wyplac "ilosc kasy w gp
- !stankonta
- !kredyt "ilosc gp (max 500cc wymagane premium i 250 lvl)
- !splac "ilosc gp (splacanie kredytu)
- !wyloguj (konczy sesje w banku)


Polecenia dla GM od Access 5:

- /lock "nick (blokowanie konta graczowi)
- /unlock "nick (odblokowanie konta graczowi)
- /checkpin "nick (pokazuje graczowi jego pin)
- /changepin "nick (zmienia pin graczowi i mu go wy?wietla)

Testowany na Evo I all dziale pieknie ladnie ;]
 

Ziom

User
Joined
Apr 14, 2008
Messages
20
Reaction score
1
Wielkie dzieki za skrypt z sprite wandem i bankiem przydal sie;] Ta rozga z ciastkiem to dla fun ots xd.
Wzuc pare nowych czarow boniebardzo mi wychodza;/
 

Kirelek

Advanced User
Joined
Apr 5, 2008
Messages
243
Reaction score
13
@ziom
Spoko podam ci jakies czary;]
Wiec 1.
Wrath of Nature.lua w data/spells/scripts

Code:
 local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, 4)
setCombatParam(combat, COMBAT_PARAM_EFFECT, 45)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -2.0, -150, -1.6, -150)

arr = {
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0},
}

local area = createCombatArea(arr)
setCombatArea(combat, area)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
I do Spells.xml
Code:
 <instant name="Wrath of Nature" words="exevo gran mas tera" lvl="55" maglv="30" mana="770" soul="0" exhaustion="1" prem="1" enabled="1" script="Wrath of Nature.lua"><vocation id="6"/></instant>
2. Eternal Winter
Eternal Winter.lua w data/spells/scripts

Code:
 local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, 512)
setCombatParam(combat, COMBAT_PARAM_EFFECT, 42)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -2.0, -150, -1.6, -150)

arr = {
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0},
{0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0},
}

local area = createCombatArea(arr)
setCombatArea(combat, area)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
No i do spells.xml
Code:
 <instant name="Eternal Winter" words="exevo gran mas frigo" lvl="60" maglv="40" mana="1200" soul="0" exhaustion="1" prem="1" enabled="1" script="eternal winter.lua"><vocation id="5"/></instant>
3. Divine Caldera.lua do data/spells/scripts
Code:
 local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, 39)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -0.5, -30, -1.1, 0)

local arr = {
{0, 0, 1, 1, 1, 0, 0},
{0, 1, 1, 1, 1, 1, 0},
{1, 1, 1, 1, 1, 1, 1},
{1, 1, 1, 3, 1, 1, 1},
{1, 1, 1, 1, 1, 1, 1},
{0, 1, 1, 1, 1, 1, 0},
{0, 0, 1, 1, 1, 0, 0}
}


local area = createCombatArea(arr)
setCombatArea(combat, area)

function onCastSpell(cid, var)
return doCombat(cid, combat, var)
end
i do spells.xml
Code:
 <instant name="Divine Caldera" words="exevo mas san" lvl="50" maglv="14" mana="180" soul="0" exhaustion="1" prem="0" enabled="1" script="divine caldera.lua"><vocation id="3"/><vocation id="7"/></instant>
Niewszystkie czary sa moje;]
 

Ziom

User
Joined
Apr 14, 2008
Messages
20
Reaction score
1
Wielkie dzieki:)
Dalbym ci reputa ale niemoge chyba jeszcze bo mam dopiero 2 albo 3 posty;p
Czary nawet spoko 9/10;]
 

Elf

Sing blue silver
Joined
Apr 12, 2008
Messages
409
Reaction score
50
Age
33
Czary dost?pne w ka?dej dystrybucji, wi?c nie wiem po co je zamieszczasz. Wzbudzi? m?odzie?czy krzyk w neodzieciach chcesz, he?

Dystansowy efekt lec?cego ciasta, tak jak i animacja nie zosta?y stworzone tak ot, ani tymbardziej dla rozdzki.
Jest ciasto, ktore mozna sobie skonfigurowac tak, aby bylo mozna nim wlasnie rzucac.

Tyle z mojej strony.
 

fifi209

New User
Joined
May 12, 2008
Messages
5
Reaction score
0
Bank talkactions (niemoj)Wchodzimy w data\talkactions\script\ robimy Bank.lua i wklejamy to:
Code:
 --Perfect Bank by Fifi

function onSay(cid,words,param)


local kredytmax = 5000000 --500cc
--\/ don't change/ nie zmienia? \/--
local lock = getPlayerStorageValue(cid,8005)
local kredyt = getPlayerStorageValue(cid,8004)
local logowanie = getPlayerStorageValue(cid,8003)
local konto = getPlayerStorageValue(cid,8002)
local playerpin = getPlayerStorageValue(cid,8001)
local playermoney = getPlayerStorageValue(cid,8000)
local access = 6
--/\ don't change/ nie zmienia? /\--


if words == '!nowekonto' then
if konto < 1 then
setPlayerStorageValue(cid,8002, 1)
local pin = math.random(100000000,999999999)
setPlayerStorageValue(cid,8001, pin)
setPlayerStorageValue(cid,8000, 0)
setPlayerStorageValue(cid,8005, 0)
doPlayerSendTextMessage(cid,22,"Twoj pin to "..pin..".")
else
doPlayerSendTextMessage(cid,22,"Posiadasz juz konto!")
end
end


if words == '!zaloguj' and param ~= "1000 1000 7" then
if konto == 1 then
if lock < 3 then
if logowanie < 1 then
if (param-playerpin) == 0 then
doPlayerSendTextMessage(cid,22,"Zostales zalogowany!")
setPlayerStorageValue(cid,8003, 1)
else
doPlayerSendTextMessage(cid,22,"Bledny kod PIN!")
setPlayerStorageValue(cid,8005, lock+1)
end
else
doPlayerSendTextMessage(cid,22,"Jestes juz zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Twoje konto jest zablokowane!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!wyloguj' then
if konto == 1 then
if logowanie == 1 then
doPlayerSendTextMessage(cid,22,"Zostales wylogowany!")
setPlayerStorageValue(cid,8003, 0)
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!wplac' and param ~= "" then
if konto == 1 then
if logowanie == 1 then
if doPlayerRemoveMoney(cid, param) == 1 then
setPlayerStorageValue(cid,8000, playermoney+param)
local newstatus = (playermoney + param)
doPlayerSendTextMessage(cid,22,"Wplaciles do banku "..param.." GP. Twoj aktualny stan konta wynosi "..newstatus.." GP.")
else
doPlayerSendTextMessage(cid,22,"Nie masz przy sobie tyle pieniedzy,aby tyle wplacic na konto.")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!wyplac' and param ~= "" then
if konto == 1 then
if logowanie == 1 then
if playermoney-param >= 0 then
setPlayerStorageValue(cid,8000, playermoney-param)
local newstatus = (playermoney-param)
doPlayerAddMoney(cid, param)
doPlayerSendTextMessage(cid,22,"Wyplaciles "..param..". Twoj stan konta wynosi "..newstatus.." GP.")
else
doPlayerSendTextMessage(cid,22,"Nie mozesz tyle wyplacic.")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!stankonta' then
if konto == 1 then
if logowanie == 1 then
doPlayerSendTextMessage(cid,22,"Na koncie masz "..playermoney.." GP.")
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
end


if words == '!kredyt' and param ~= "" then
if isPremium(cid) and getPlayerLevel(cid) >= 250 then
if konto == 1 then
if logowanie == 1 then
if kredyt+param <= kredytmax then
setPlayerStorageValue(cid,8004, param)
doPlayerAddMoney(cid, param)
doPlayerSendTextMessage(cid,22,"Zaciagnales kredyt w wysokosci "..param.." gp!")
else
doPlayerSendTextMessage(cid,22,"Nie mozesz zaciagac juz kredytu!")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz premium lub nie masz 250 lvl!")
end
end


if words == '!splac' and param ~= "" then
if isPremium(cid) and getPlayerLevel(cid) >= 250 then
if konto == 1 then
if logowanie == 1 then
if doPlayerRemoveMoney(cid, param) == 1 then
setPlayerStorageValue(cid,8004, -param)
doPlayerSendTextMessage(cid,22,"Splaciles wlasnie "..param.." gp!")
else
doPlayerSendTextMessage(cid,22,"Nie masz tyle kasy!")
end
else
doPlayerSendTextMessage(cid,22,"Nie jestes zalogowany!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz konta!")
end
else
doPlayerSendTextMessage(cid,22,"Nie posiadasz premium lub nie masz 250 lvl!")
end
end


if words == '/lock' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
setPlayerStorageValue(getPlayerByName(param),8005, 3)
doPlayerSendTextMessage(cid,22,"Zablokowales konto graczowi "..param.."!")
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end


if words == '/unlock' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
setPlayerStorageValue(getPlayerByName(param),8005, 0)
doPlayerSendTextMessage(cid,22,"Odblokowales konto graczowi "..param.."!")
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end


if words == '/checkpin' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
local pin = getPlayerStorageValue(getPlayerByName(param),8001)
doPlayerSendTextMessage(getPlayerByName(param),22,"Twoj pin to "..pin.."!")
doPlayerSendTextMessage(cid,22,"Gracz zostal powiadomiony o swoim pinie!")
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end


if words == '/changepin' and param ~= "" then
local playeraccess = getPlayerAccess(cid)
if playeraccess == access then
local pin = math.random(100000000,999999999)
doPlayerSendTextMessage(getPlayerByName(param),22,"Twoj nowy pin to "..pin.."!")
doPlayerSendTextMessage(cid,22,"Gracz zostal powiadomiony o swoim nowym pinie!")
setPlayerStorageValue(getPlayerByName(param),8001, pin)
else
doPlayerSendTextMessage(cid,22,"Musisz posiadac "..access.." poziom uprawnien aby to zrobic!")
end
end

end
wchodzimy w data\talkactions.xml i dodajemy to:
Code:
 <talkaction words="!zaloguj" script="bank.lua"/>
<talkaction words="!wyloguj" script="bank.lua"/>
<talkaction words="!wplac" script="bank.lua"/>
<talkaction words="!wyplac" script="bank.lua"/>
<talkaction words="!nowekonto" script="bank.lua"/>
<talkaction words="!stankonta" script="bank.lua"/>
<talkaction words="!kredyt" script="bank.lua"/>
<talkaction words="!splac" script="bank.lua"/>
<talkaction words="/lock" script="bank.lua"/>
<talkaction words="/unlock" script="bank.lua"/>
<talkaction words="/changepin" script="bank.lua"/>
<talkaction words="/checkpin" script="bank.lua"/>
I mamy gotowy bank.
OBJASNIENIE

Nale?y zrobi? konto poleceniem !nowekonto
Zostanie wy?wietlony pin, kt?ry trzeba pami?ta? lub zapisac ;]!

Potem logowanie poleceniem !zaloguj "twoj pin

Po zalogowaniu dost?pne polecenia:

- !wplac "ilosc kasy w gp
- !wyplac "ilosc kasy w gp
- !stankonta
- !kredyt "ilosc gp (max 500cc wymagane premium i 250 lvl)
- !splac "ilosc gp (splacanie kredytu)
- !wyloguj (konczy sesje w banku)


Polecenia dla GM od Access 5:

- /lock "nick (blokowanie konta graczowi)
- /unlock "nick (odblokowanie konta graczowi)
- /checkpin "nick (pokazuje graczowi jego pin)
- /changepin "nick (zmienia pin graczowi i mu go wy?wietla)

Testowany na Evo I all dziale pieknie ladnie ;]

Chcia?bym doda?, i? ten bank jest m?j. Napisa?em ca?kiem now? wersj?, kt?r? znajdziecie pod adresem:

hxxp://forum.tibia.org.pl/showthread.php?t=280882

xx = tt

Skrypt ci?gle jest uaktualniany (no gdy mam czas)

Pozdrawiam.
 

Miki2020

Active User
Joined
May 9, 2008
Messages
80
Reaction score
5
nic ciekawego skrypty ogolno dostepne jakies 9/10 skryptow jest na tym forum :d zadna filozofia skopjowac i stowrzyc jeden "Super Ekstra madafaka temat" :d na przyszlosc nie krzycz tak i pozatym zly dzial
 
Status
Not open for further replies.
Top