Search Results
Hello all, Im trying to reinstall SAMP on my computer but it wont load, only single player starts. Ive been trying to fix this issue for about a day and so far no luck. I followed what the wiki says...
133
Hello, I need to check if the user exists, and if he does goes to login dialog, and if not, goes to register. here is the code i have already: Код: public OnPlayerConnect(playerid) { PInfo[play...
107
so like Code: format(str, sizeof(str), "SELECT `password` FROM `player` WHERE `username` = `%s`", Name); mysql_query(str); thanks
90
Code: GetPlayerName(playerid, Name, sizeof(Name)); mysql_query("SELECT `password` FROM `player` WHERE `username`=`%s`", Name); Code: H:\RP\filterscripts\msql.pwn(218) : error 035: argument type mism...
90
Oh ok, thank you very much
49
Hey, How do i get the id of a vehicle that a player is not sitting in? so like i want to set a variable to the id of a car when my cmd is used to spawn a car but i dont know how to get the id. I dont...
49
Код: House_CreateEntrance(HouseID) { new msg[128], Float:x, Float:y, Float:z; x = HInfo[HouseID][HX]; y = HInfo[HouseID][HY]; z = HInfo[HouseID][HZ]; if(HInfo[HouseID][Owned] == true) { ...
56
Yeh thats what ive been doing but i was hoping that there was a lisst somewhere so i can call it in my code as i need to put all vehicles in a dialog for a purchase script
54
Hi all, does anyone know where i can get a full list of vehicles for download in the following format or similar? Name, ID eg Buffalo, 402 Infernus, 411 Thanks to any one that can help, if not ill...
54
but where do i call the timer? and do i do SetTimerEx("Point", 10, true, "d", playerid); ?
108
TimerEx, do you mean SetTimerEx? and dont they both have to be public
108
Код: new FBIgate1, FBIgate2, FBIgate3; FilterScriptInit_FBI() { CreateObject(987, 1583.73, -1313.23, 16.07, 0.00, 0.00, 180.33); CreateObject(987, 1571.79, -1313.26, 16.08, 0.00, 0.00, -...
108
i had it as playerid, but it was same problem
108
Код: new FBIgate1, FBIgate2, FBIgate3; new g1o, g2o, g3o, g1c, g2c, g3c; FilterScriptInit_FBI() { CreateObject(987, 1583.73, -1313.23, 16.07, 0.00, 0.00, 180.33); CreateObject(987, 1571.79...
108
Awesome it work thank you so much for your help and quick reply. + Rep
85
Hello, Ive been trying to save my players health in his file using the following Код: public OnPlayerDisconnect(playerid, reason) { new Float:health, Float:armour, Name[MAX_PLAYER_NAME], File[25...
85
Код: public OnPlayerCommandText(playerid, cmdtext[]) { if (!strcmp("/acmds", cmdtext)) { new File[256], Level, Name[256]; GetPlayerName(playerid, Name, sizeof(Name)); format(File, sizeof(F...
58