• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[JASS] somebody help !

Status
Not open for further replies.
Level 1
Joined
Dec 10, 2015
Messages
5
I dont understand this code :
28tg6eh.jpg

It's mean i can cheat with that ?

4lgi2h.jpg


help me if this map can cheat pls !!!

war3map.j file : https://userscloud.com/sktpchxxgtu2

map : http://www.epicwar.com/maps/219650/
 
Last edited:
Level 4
Joined
Nov 27, 2012
Messages
85
quick answer is yes, especially since "cheat" is literally written everywhere

this looks like something I use for testing, need to see rest of code
 
Level 4
Joined
Nov 27, 2012
Messages
85
do you want to post the map?

looks like you need to enter the correct zone, then type "@" to make cheats available
 
Level 4
Joined
Nov 27, 2012
Messages
85
something strange for sure, can't figure it out yet
to make cheats available SHOULD be "@ADMIN MOI SUA DUNG DUOC" but doesn't seem to work

also if I change name to spazzler, get +300 stats

I'll look more later
 

Attachments

  • Untitled2.jpg
    Untitled2.jpg
    334.5 KB · Views: 56
Level 1
Joined
Dec 10, 2015
Messages
5
something strange for sure, can't figure it out yet
to make cheats available SHOULD be "@ADMIN MOI SUA DUNG DUOC" but doesn't seem to work

also if I change name to spazzler, get +300 stats

I'll look more later
thanks for your help :)
if you find the way activated that cheat act pls tell me :)
Copy and paste the code Into [code=jass]Jass Code Here[/code] codes.

And players can cheat anyhow they want to, unless you use an Anti-cheat system.

P.S. What kind of cheat do you mean?
i'll note that, i mean act cheat code like -gold , -lumber....
i've heard that there are kind of cheat that you type something and press arrow key to activated cheat. is it the same as this ?
 
Level 4
Joined
Nov 27, 2012
Messages
85
i'll note that, i mean act cheat code like -gold , -lumber....
i've heard that there are kind of cheat that you type something and press arrow key to activated cheat. is it the same as this ?

yup, stuff like that is written in this map, but like I said, can't figure out how to activate. maybe if I could read vietnamese

anyone else figure this out?
udg_string01 = ADMIN MOI SUA DUNG DUOC
JASS:
function CheatUse takes nothing returns nothing
    local player p2p=GetTriggerPlayer()
    if SubString(GetEventPlayerChatString(),0,100)==udg_string01 and not IsPlayerInForce(p2p,udg_force02)then
        call DisplayTextToForce(udg_force02,GetPlayerName(p2p))
        call ForceAddPlayer(udg_force02,p2p)
        call TriggerRegisterPlayerChatEvent(udg_trigger06,p2p,"@",false)
    endif
    set p2p=null
endfunction


function VFCK0 takes nothing returns nothing
    local integer zzz=0
    loop
        exitwhen zzz>11
        call TriggerRegisterPlayerChatEvent(udg_trigger07,Player(zzz),"@",false)
        set zzz=zzz+1
    endloop
    
    call TriggerAddAction(udg_trigger07,function CheatUse)
    call TriggerAddCondition(udg_trigger06,Condition(function Cheatz0r))
    call TriggerAddAction(udg_trigger06,function DirectCheat)
endfunction

My conclusion: I don't think this trigger (gg_trg_VFCKey) is created anywhere, so the cheats are there, but won't work.
JASS:
function InitTrig_VFCKey takes nothing returns nothing
    set udg_gamecache01=InitGameCache("worldkey2.6b")
    set udg_trigger01=CreateTrigger()
    set udg_trigger02=CreateTrigger()
    set udg_trigger03=CreateTrigger()
    set udg_trigger04=CreateTrigger()
    set udg_trigger05=CreateTrigger()
    set udg_trigger06=CreateTrigger()
    set udg_trigger07=CreateTrigger()
    call ExecuteFunc("VFCK0")
endfunction

JASS:
function VFCKeystomTriggers takes nothing returns nothing
    call InitTrig_VFCKey()
    call InitTrig_VFCKey_cheat_2()
    call InitTrig_VFCKey_cheat_3()
    call InitTrig_Trigger_679()
    call InitTrig_VFCkey_thong_bao()
    call InitTrig_VFCkey_thong_bao_Copy()
    call InitTrig_Trigger_680()
endfunction

some sort of contest?
set udg_admin_Menu="Thay duoc lenh code chung to ban pro, neu ban muon cong tac thi lien he dia chi duoi nhe !"
set udg_admin_Menu2="lenh cheat duoc thiet ke bo Jerry , lien he qua yahoo : [email protected]"
set udg_VFCKey_Worldedit="Thay duoc code nhung ban khong the cheat, neu ban la pro thi lien he cong tac nhe."
 
Status
Not open for further replies.
Top